home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
vol_100
/
161_01
/
501.c
< prev
next >
Wrap
C/C++ Source or Header
|
1985-08-28
|
151b
|
14 lines
#include "timer1.h"
# define ASIZE 100
int a[ASIZE], i;
DO_STMT("Array indexing loop")
for (i = 0; i < ASIZE; i++)
a[i] = 0;
OD
}